describe it.
How to configure settings for visual studio?
759
07-Jan-2020
Updated on 07-Jan-2020
Nishi Tiwari
07-Jan-2020Configuring settings
a. Set GoogleCloudSamples:ProjectId to your project ID.
b. Set GoogleCloudSamples:BookStore to sqlserver.
c. Near the bottom of the file, under <connectionStrings>, find the connectionStrings XML sub-element with the attribute name="LocalSqlServer". Update the connectionString value with the external IP address, database name, username, and password of your SQL Server instance. For example, the connectionString for a remote SQL Server on IP 104.155.20.171 with database = bookshelf, user = dotnetapp and password = test looks like this:
connectionString="Data Source=104.155.20.171;Initial Catalog=bookshelf;Integrated Security=False;User ID=dotnetapp;Password=test;MultipleActiveResultSets=True"
Add-Migration Init
Update-Database